ABC148 C - Snack
https://atcoder.jp/contests/abc148/tasks/abc148_c
提出
code: python
import math
a, b = map(int, input().split())
print((a * b) // math.gcd(a, b))
テーマ
#gcd
メモ
最小公倍数
(a * b) // math.gcd(a, b)
Python3.9で
math.lcm()
が追加されている